home *** CD-ROM | disk | FTP | other *** search
/ Stone Design / Stone Design.iso / Stone_Friends / Wave / WavesWorld / Source / Libraries / tcl7.4b3 / doc / eval.n < prev    next >
Encoding:
Text File  |  1994-12-17  |  896 b   |  31 lines

  1. '\"
  2. '\" Copyright (c) 1993 The Regents of the University of California.
  3. '\" Copyright (c) 1994 Sun Microsystems, Inc.
  4. '\"
  5. '\" See the file "license.terms" for information on usage and redistribution
  6. '\" of this file, and for a DISCLAIMER OF ALL WARRANTIES.
  7. '\" 
  8. '\" @(#) eval.n 1.2 94/12/17 16:17:48
  9. '\" 
  10. .so man.macros
  11. .HS eval tcl
  12. .BS
  13. '\" Note:  do not modify the .SH NAME line immediately below!
  14. .SH NAME
  15. eval \- Evaluate a Tcl script
  16. .SH SYNOPSIS
  17. \fBeval \fIarg \fR?\fIarg ...\fR?
  18. .BE
  19.  
  20. .SH DESCRIPTION
  21. .PP
  22. \fBEval\fR takes one or more arguments, which together comprise a Tcl
  23. script containing one or more commands.
  24. \fBEval\fR concatenates all its arguments in the same
  25. fashion as the \fBconcat\fR command, passes the concatenated string to the
  26. Tcl interpreter recursively, and returns the result of that
  27. evaluation (or any error generated by it).
  28.  
  29. .SH KEYWORDS
  30. concatenate, evaluate, script
  31.